home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / os2 / srefv12i.zip / mediatyp.rx0 < prev    next >
Text File  |  1996-12-24  |  765b  |  24 lines

  1. /* Sample "user defined mediatype" file
  2.    SRE-Filter looks here if it can't determine a mediatype from it's
  3.    built-in list.
  4.    You can add entries of the form:
  5.         known.xxx  =  'type/subtype'
  6.    For example:
  7.         known.listing = 'text/plain'
  8.     --- All files with a .listing extension are treated as text/plain mime type.
  9.  
  10.    For more complicated extensions (containing non-alphanumeric characters)
  11.    you should use 2 statements:
  12.           tmp1='AN-EXTENSION' ; known.tmp1='type/subtype'
  13.    For example:
  14.         tmp1='HTML-SSI' ; known.tmp1='text/html'
  15.    CAUTION: The value of the  "tmp1" variable must be capitalized
  16.  
  17. */
  18. tmp1='HTML-SSI'
  19. known.tmp1='text/html'
  20. tmp1='HTM-SSI'
  21. known.tmp1='text/html'
  22. known.listing='text/plain'
  23.  
  24.